home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 9 / FM Towns Free Software Collection 9.iso / t_os / shell / tsbgex / src / fish / fish.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-11-16  |  380 b   |  19 lines

  1. #include "../win.h"
  2.  
  3. struct fish {
  4.     /* const */
  5.     int cnt_init, y, dx, dt;
  6.     int width, h, n_raster;
  7.     int n_color;
  8.     unsigned short *color16;
  9.     unsigned char *color4;
  10.     unsigned char **raster;
  11.     unsigned char *save;
  12.     /* screen mode dependent const */
  13.     int w, x_max, save_size;
  14.     unsigned char *color;
  15.     /* current state */
  16.     struct window win;
  17.     int    index, cnt, timer;
  18. };
  19.